home *** CD-ROM | disk | FTP | other *** search
- % -----------------------------------------------------------------------------
- % ANSI file demonstration *TERMINATE PRESCRIPTION*
- % -----------------------------------------------------------------------------
- %
- % Version : 1.00
- % Filename : SHOWANSI.TSL
- % Company : SerWiz Comm
- % Programmer : Bo Bendtsen
- % Module created : 07 Aug 1995
- % Latest revision : 07 Aug 1995
- % Language/version : Terminate Prescription 1.00
- % Remarks : Opens and shows the contents of an ANSI file
- %
- % -----------------------------------------------------------------------------
-
- ClearScreen
- Print "Showing HOST\WELCOME.ANS"
- WaitEnter
-
- SetTerminal 1
-
- Set Key=0
- Set Filename = "HOST\WELCOME.ANS"
- OpenText 1,Filename,0
- If IOResult=0
- Set IOResult=0
- While EndofTextFile(1)=0
- WriteTerminal readtext(1)
- EndWhile
- CloseText 1
- Else
- PrintLn "Could not open file"
- Endif
-
-